footer {
    background: var(--colorBackground);
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 2em;
    padding: 3em 0;
}
footer a, footer p {
    color: var(--colorLightPrimary);
    font-size: 14px;
}
footer p {
    font-size: 16px;
}
footer h2 {
    color: rgba(134,134,134,0.34);
    font-size: 28px;
}
footer .container {
    gap: 1em;
}
.copyryght-alreadyfi {
    background: rgba(245, 245, 245, 1);
    width: 100%;
    display: flex;
    justify-content: center;
}
.copyryght-alreadyfi .container {
    padding: 1.5em;
    align-items: center;
}
.copyryght-alreadyfi .container p {
    color: var(--colorMain);
    font-weight: 500;
    font-size: 16px;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
}
.social .icon-content {
    position: relative;
}
.social .icon-content .tooltip {
    position: absolute;
    width: max-content;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}
.social .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}
.social .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    --colorTwo: #fff;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.social .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.social .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}
.social .icon-content a[data-social="dzen"] svg path:last-child{
    fill: var(--colorTwo);
}

.social .icon-content a:hover {
    color: white;
    --colorTwo: #000;
}
.social .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}
.social .icon-content a:hover .filled {
    height: 100%;
}
.social .icon-content a[data-social="vk"] .filled,
.social .icon-content a[data-social="vk"] ~ .tooltip {
    background-color: #345E90;
}
.social .icon-content a[data-social="dzen"] .filled,
.social .icon-content a[data-social="dzen"] ~ .tooltip {
    background-color: #000;
}
.social .icon-content a[data-social="telegram"] .filled,
.social .icon-content a[data-social="telegram"] ~ .tooltip {
    background-color: #0088cc;
}
  

@media (min-width: 1441px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 800px) {
}
@media (max-width: 600px) {
}
@media (max-width: 450px) {
}
@media (max-width: 380px) {
}